 * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: linear-gradient(
      180deg,
      #d68cff 0%,
      #e9c6ff 35%,
      #ffffff 65%,
      #b9f0ff 100%
    );
    background-size: 200% 200%;
    animation: gradientMove 12s ease infinite;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  @keyframes gradientMove {
    0% { background-position: 50% 0%; }
    50% { background-position: 50% 100%; }
    100% { background-position: 50% 0%; }
  }

  /* Floating background blobs */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
  }

  .blob1 {
    width: 320px;
    height: 320px;
    background: #d68cff;
    top: -100px;
    left: -100px;
  }

  .blob2 {
    width: 350px;
    height: 350px;
    background: #b9f0ff;
    bottom: -120px;
    right: -120px;
    animation-delay: 3s;
  }

  @keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
  }

  .container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    padding: 50px 40px;
    max-width: 520px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    color: #333;
    animation: fadeIn 1.2s ease;
    transition: transform 0.3s ease;
  }

  .container:hover {
    transform: translateY(-6px);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Animated Maintenance Logo */
/* Logo Image */
.logo {
  margin-bottom: 2px;
  animation: bounce 2s ease-in-out infinite;
}

.logo-img {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto;
}


  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  h1 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #5a2d82;
  }

  p {
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
  }

  .badge {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 22px;
    background: linear-gradient(90deg, #7b3fe4, #5a2d82);
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(123, 63, 228, 0.4);
    transition: all 0.3s ease;
  }

  .badge:hover {
    transform: scale(1.05);
  }

  footer {
    margin-top: 25px;
    font-size: 13px;
    opacity: 0.8;
    color: #555;
  }

  @media (max-width: 480px) {
    .container {
      margin: 20px;
      padding: 35px 25px;
    }
  }